home *** CD-ROM | disk | FTP | other *** search
- * Enables the media access operations on the logical unit.
-
- @THREAD START.LOG
- @NEWALIAS SADD SCSIADD.GRA
- @IMPORT SCSICOM.SCR
- SADD DD_OPEN
-
- * 0=Async mode, 1=Sync mode
- SADD SET MODE=1
-
- * Command completion timeout (Secs)
- * 0=the assigned value is the default set by the driver,
- * -1=the assigned value is infinite.
- SADD SET TIMEOUT=0
-
- * 1(Status returned as soon as the command descriptor block is validated)
- * 0(Status returned after the operation is complete)
- SADD SET STATUS_RETURN_IMMED = 0
-
- * 0 = STOPS the logical unit (media cannot be accessed).
- * 1 = Makes the logical unit ready for use
- SADD SET START_STOP = 1
-
- * 0 = No action is taken regarding the loading or ejecting media.
- * 1 = Medium is unloaded if the start bit is zero.
- * Medium is loaded if the start bit is one
- SADD SET LOAD_EJECT=0
-
- * Name for paramblock
- SADD SET LABEL = "START UNIT"
-
- SADD START_STOP_UNIT
-
- SADD DD_CLOSE
-